69fa6f0796c0bc940b9ef4bff47b7a5d0e48da81,src/main/java/com/hankcs/hanlp/seg/Viterbi/ViterbiSegment.java,ViterbiSegment,segSentence,#char[]#,38

Before Change



        if (config.useCustomDictionary)
        {
            combineByCustomDictionary(vertexList);
        }

        if (HanLP.Config.DEBUG)

After Change



        if (config.useCustomDictionary)
        {
            if (config.indexMode)
                combineByCustomDictionary(vertexList, wordNetAll);
            else combineByCustomDictionary(vertexList);
        }

        if (HanLP.Config.DEBUG)